LEADTOOLS Color Conversion (Leadtools.ColorConversion assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
IccColorLookupTable8Bit Constructor(Byte[],Byte,Byte[])
See Also 
Leadtools.ColorConversion Namespace > IccColorLookupTable8Bit Class > IccColorLookupTable8Bit Constructor : IccColorLookupTable8Bit Constructor(Byte[],Byte,Byte[])



numberOfGridPoints
Array that contains the number of grid points in each dimension.
precision
Precision of data elements, in bytes. Must be 01h.
data
Buffer of color lookup table data points. The size of each element is 1 byte.
Initializes a new IccColorLookupTable8Bit with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal numberOfGridPoints() As Byte, _
   ByVal precision As Byte, _
   ByVal data() As Byte _
)
Visual Basic (Usage)Copy Code
Dim numberOfGridPoints() As Byte
Dim precision As Byte
Dim data() As Byte
 
Dim instance As New IccColorLookupTable8Bit(numberOfGridPoints, precision, data)
C# 
public IccColorLookupTable8Bit( 
   byte[] numberOfGridPoints,
   byte precision,
   byte[] data
)
C++/CLI 
public:
IccColorLookupTable8Bit( 
   array<byte>^ numberOfGridPoints,
   byte precision,
   array<byte>^ data
)

Parameters

numberOfGridPoints
Array that contains the number of grid points in each dimension.
precision
Precision of data elements, in bytes. Must be 01h.
data
Buffer of color lookup table data points. The size of each element is 1 byte.

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also